home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / sparcmgr / demo1.zoo / demo / msg / do_ls < prev    next >
Encoding:
Text File  |  1989-01-24  |  498 b   |  19 lines

  1. #    $Header$
  2. #    $Source$
  3.  
  4. #                        Copyright (c) 1987 Bellcore
  5. #                            All Rights Reserved
  6. #       This document contains proprietary information that shall
  7. #       be distributed or routed only within Bellcore and its
  8. #       authorized clients, except with written permission of Bellcore.
  9.  
  10. #! /bin/sh
  11. # do an ls in a window
  12. #
  13. dir=`echo $* | sed 's./[^/]*$./.'`
  14. (  echo "             ---> $dir <---";
  15.    ls -CF $dir;
  16.    echo "Hit RETURN to continue"
  17.    ) | more
  18.  
  19.